home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / nuf210.arc / MAKEFILE < prev    next >
Text File  |  1990-06-14  |  734b  |  29 lines

  1. SWITCHES= -c -w -mc -Z -O -G -f-
  2.  
  3. nufind.exe:    nufind.obj rootpath.obj copy.obj getcurd.obj select.obj match.obj getargs.obj queue.obj
  4.         tcc -mc nufind.obj rootpath.obj copy.obj getcurd.obj select.obj match.obj getargs.obj queue.obj
  5.  
  6. nufind.obj:    nufind.c queue.h nufind.h makefile
  7.         tcc $(SWITCHES) nufind
  8.  
  9. rootpath.obj:    rootpath.c makefile
  10.         tcc $(SWITCHES) rootpath
  11.  
  12. copy.obj:    copy.c makefile
  13.         tcc $(SWITCHES) copy
  14.  
  15. getcurd.obj:    getcurd.c makefile
  16.         tcc $(SWITCHES) getcurd
  17.  
  18. select.obj:    select.c makefile
  19.         tcc $(SWITCHES) select
  20.  
  21. match.obj:    match.c makefile
  22.         tcc $(SWITCHES) match
  23.  
  24. getargs.obj:    getargs.c makefile
  25.         tcc $(SWITCHES) getargs
  26.  
  27. queue.obj:    queue.c queue.h makefile
  28.         tcc $(SWITCHES) queue
  29.